home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / docs / howto / sparcProm < prev    next >
Encoding:
Text File  |  1992-12-14  |  1.2 KB  |  41 lines

  1. This is a short howto (get started, really) about the SparcStation PROM.
  2. The PROM has a FORTH interpreter in it that has oodles of functions.
  3. It has a set of environment variables that control things like
  4. your boot path and other system parameters.
  5.  
  6. You can abort out of Sprite and enter the PROM, then return to Sprite
  7. and not loose your system.  Honest.  You might cause your workstation
  8. to recover with the file servers, but that should work.  Typing:
  9.  
  10.  L1-a
  11.  
  12. will abort to the monitor.  Usually the PROM monitor prompt is:
  13.  
  14.  >
  15.  
  16. You can type 'b', 'c', or 'n' to this prompt, to
  17. reboot, continue execution (i.e. return to Sprite), or enter the
  18. FORTH interpreter, respectively. If you type 'n', you get this prompt:
  19.  
  20.  ok
  21.  
  22. There are a zillion commands defined by the FORTH system in the PROM.
  23.  
  24.  printenv
  25.  
  26. will dump the environment variables.
  27. You will probably see that the default boot-from is "le()vmunix"
  28. You want to change that to "le()sun4c.md/sprite" or perhaps "le()sun4c.md/new"
  29. You can change it with:
  30.  
  31.  setenv boot-from le()sun4c.md/sprite
  32.  
  33. You can now resume Sprite with the "go" command.
  34.  
  35.  go
  36.  
  37. If you return to the PROM monitor from Sprite again, you'll go
  38. right into the FORTH interpreter and get the "ok " prompt in response to L1-a
  39.  
  40. Type "help" and try it out.
  41.